File tree Expand file tree Collapse file tree 8 files changed +11
-11
lines changed
Expand file tree Collapse file tree 8 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ import { NativeModuleTokenizer } from './src/bridge/native/tokenizer';
2323import * as core from './src/core' ;
2424import * as styling from './src/styling/config' ;
2525import * as themes from './src/styling/themes' ;
26- import * as events from './src/dom/ events' ;
26+ import * as events from './src/events' ;
2727
2828// "{{EDITOR_CONFIG}}" will be replaced with a JSON literal in production
2929// eslint-disable-next-line @typescript-eslint/no-explicit-any
Original file line number Diff line number Diff line change 11import isMetaKey from './isMetaKey' ;
2- import { editingState } from '../../ common/store' ;
2+ import { editingState } from '../common/store' ;
33
4- import * as completion from '../../ modules/completion' ;
5- import * as grammarly from '../../ modules/grammarly' ;
6- import * as selection from '../../ modules/selection' ;
7- import * as tokenizer from '../../ modules/tokenizer' ;
8- import * as link from '../../ styling/nodes/link' ;
4+ import * as completion from '../modules/completion' ;
5+ import * as grammarly from '../modules/grammarly' ;
6+ import * as selection from '../modules/selection' ;
7+ import * as tokenizer from '../modules/tokenizer' ;
8+ import * as link from '../styling/nodes/link' ;
99
1010export function startObserving ( ) {
1111 document . addEventListener ( 'click' , event => {
File renamed without changes.
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import { Decoration } from '@codemirror/view';
22import { Range } from '@codemirror/state' ;
33import { syntaxTree } from '@codemirror/language' ;
44import { SyntaxNodeRef } from '@lezer/common' ;
5- import { WidgetView } from '../../dom/ views/types' ;
5+ import { WidgetView } from '../../views/types' ;
66
77/**
88 * Create mark decorations.
Original file line number Diff line number Diff line change 11import { createMarkDeco , createWidgetDeco } from '../matchers/lexer' ;
22import { createDecoPlugin } from '../helper' ;
3- import { PreviewWidget } from '../../dom/ views' ;
3+ import { PreviewWidget } from '../../views' ;
44import { PreviewType , showPreview } from '../../modules/preview' ;
55
66/**
Original file line number Diff line number Diff line change 11import { createMarkDeco , createWidgetDeco } from '../matchers/lexer' ;
22import { createDecoPlugin } from '../helper' ;
3- import { PreviewWidget } from '../../dom/ views' ;
3+ import { PreviewWidget } from '../../views' ;
44import { PreviewType , showPreview } from '../../modules/preview' ;
55
66/**
Original file line number Diff line number Diff line change 11import { WidgetView } from './types' ;
2- import { PreviewType } from '../../ modules/preview' ;
2+ import { PreviewType } from '../modules/preview' ;
33
44/**
55 * Widget used to show a [preview] button after some contents, such as mermaid diagrams.
File renamed without changes.
You can’t perform that action at this time.
0 commit comments