chore: no @web imports from @web package (#34055)
This commit is contained in:
parent
43e46d63dd
commit
52b2548612
|
|
@ -14,7 +14,7 @@
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import { ansi2html } from '@web/ansi2html';
|
import { ansi2html } from '../ansi2html';
|
||||||
import * as React from 'react';
|
import * as React from 'react';
|
||||||
import './errorMessage.css';
|
import './errorMessage.css';
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,7 @@ import * as React from 'react';
|
||||||
import { ListView } from './listView';
|
import { ListView } from './listView';
|
||||||
import type { ListViewProps } from './listView';
|
import type { ListViewProps } from './listView';
|
||||||
import './gridView.css';
|
import './gridView.css';
|
||||||
import { ResizeView } from '@web/shared/resizeView';
|
import { ResizeView } from '../shared/resizeView';
|
||||||
|
|
||||||
export type Sorting<T> = { by: keyof T, negate: boolean };
|
export type Sorting<T> = { by: keyof T, negate: boolean };
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@
|
||||||
|
|
||||||
import * as React from 'react';
|
import * as React from 'react';
|
||||||
import './listView.css';
|
import './listView.css';
|
||||||
import { clsx, scrollIntoViewIfNeeded } from '@web/uiUtils';
|
import { clsx, scrollIntoViewIfNeeded } from '../uiUtils';
|
||||||
|
|
||||||
export type ListViewProps<T> = {
|
export type ListViewProps<T> = {
|
||||||
name: string,
|
name: string,
|
||||||
|
|
|
||||||
|
|
@ -14,7 +14,7 @@
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import { clsx } from '@web/uiUtils';
|
import { clsx } from '../uiUtils';
|
||||||
import './tabbedPane.css';
|
import './tabbedPane.css';
|
||||||
import { Toolbar } from './toolbar';
|
import { Toolbar } from './toolbar';
|
||||||
import * as React from 'react';
|
import * as React from 'react';
|
||||||
|
|
|
||||||
|
|
@ -14,7 +14,7 @@
|
||||||
limitations under the License.
|
limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import { clsx } from '@web/uiUtils';
|
import { clsx } from '../uiUtils';
|
||||||
import './toolbar.css';
|
import './toolbar.css';
|
||||||
import * as React from 'react';
|
import * as React from 'react';
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,7 @@
|
||||||
import './toolbarButton.css';
|
import './toolbarButton.css';
|
||||||
import '../third_party/vscode/codicon.css';
|
import '../third_party/vscode/codicon.css';
|
||||||
import * as React from 'react';
|
import * as React from 'react';
|
||||||
import { clsx } from '@web/uiUtils';
|
import { clsx } from '../uiUtils';
|
||||||
|
|
||||||
export interface ToolbarButtonProps {
|
export interface ToolbarButtonProps {
|
||||||
title: string,
|
title: string,
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import * as React from 'react';
|
import * as React from 'react';
|
||||||
import { clsx, scrollIntoViewIfNeeded } from '@web/uiUtils';
|
import { clsx, scrollIntoViewIfNeeded } from '../uiUtils';
|
||||||
import './treeView.css';
|
import './treeView.css';
|
||||||
|
|
||||||
export type TreeItem = {
|
export type TreeItem = {
|
||||||
|
|
|
||||||
|
|
@ -19,8 +19,8 @@ import './xtermWrapper.css';
|
||||||
import type { ITheme, Terminal } from 'xterm';
|
import type { ITheme, Terminal } from 'xterm';
|
||||||
import type { FitAddon } from 'xterm-addon-fit';
|
import type { FitAddon } from 'xterm-addon-fit';
|
||||||
import type { XtermModule } from './xtermModule';
|
import type { XtermModule } from './xtermModule';
|
||||||
import { currentTheme, addThemeListener, removeThemeListener } from '@web/theme';
|
import { currentTheme, addThemeListener, removeThemeListener } from '../theme';
|
||||||
import { useMeasure } from '@web/uiUtils';
|
import { useMeasure } from '../uiUtils';
|
||||||
|
|
||||||
export type XtermDataSource = {
|
export type XtermDataSource = {
|
||||||
pending: (string | Uint8Array)[];
|
pending: (string | Uint8Array)[];
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue