rme 0.2.5-alpha.2 → 0.2.5-alpha.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +5 -5
- package/dist/index.mjs +300 -298
- package/dist/index.mjs.map +4 -4
- package/package.json +20 -20
package/dist/index.d.ts
CHANGED
|
@@ -4,16 +4,16 @@ export { CreateThemeOptions, createTheme } from '@drl990114/codemirror-themes';
|
|
|
4
4
|
import { LanguageSupport, LanguageDescription } from '@codemirror/language';
|
|
5
5
|
import { Compartment, Extension } from '@codemirror/state';
|
|
6
6
|
import { EditorView, EditorViewConfig } from '@codemirror/view';
|
|
7
|
-
import { ProsemirrorNode, EditorView as EditorView$1 } from '@
|
|
7
|
+
import { ProsemirrorNode, EditorView as EditorView$1 } from '@rme-sdk/pm';
|
|
8
8
|
import * as react from 'react';
|
|
9
9
|
import react__default, { ReactNode, MouseEvent, FC } from 'react';
|
|
10
10
|
import { RemirrorEventListenerProps, Extension as Extension$1, RemirrorManager as RemirrorManager$1, AnyExtension as AnyExtension$1 } from 'remirror';
|
|
11
|
-
import { AnyExtension, RemirrorManager, CommandDecoratorMessageProps, CoreIcon } from '@
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
11
|
+
import { AnyExtension, RemirrorManager, CommandDecoratorMessageProps, CoreIcon } from '@rme-sdk/core';
|
|
12
|
+
import { Node, Schema, NodeType, Mark } from '@rme-sdk/pm/model';
|
|
13
|
+
import { ReactFrameworkOutput } from '@rme-sdk/react-core';
|
|
14
14
|
import { Token as Token$1 } from 'markdown-it/index.js';
|
|
15
15
|
import Token from 'markdown-it/lib/token.mjs';
|
|
16
|
-
export { useCommands, useHelpers, useKeymap, useRemirrorContext } from '@
|
|
16
|
+
export { useCommands, useHelpers, useKeymap, useRemirrorContext } from '@rme-sdk/react';
|
|
17
17
|
import * as styled_components from 'styled-components';
|
|
18
18
|
import * as styled_components_dist_types from 'styled-components/dist/types';
|
|
19
19
|
|