2
0

♻️ Add a test for internal waitUntil

This commit is contained in:
Baptiste Arnaud
2024-04-16 12:56:47 +02:00
parent 8d62898d15
commit 87f5d8515a
89 changed files with 1029 additions and 1154 deletions

View File

@@ -3,13 +3,8 @@ import {
ELEMENT_CODE_BLOCK,
ELEMENT_CODE_LINE,
} from '@udecode/plate-code-block'
import {
getPluginType,
TDescendant,
TElement,
TText,
Value,
} from '@udecode/plate-common'
import { TDescendant, TElement, TText, Value } from '@udecode/slate'
import { getPluginType } from '@udecode/plate-core'
import {
ELEMENT_H1,
ELEMENT_H2,

View File

@@ -1,5 +1,6 @@
import { MARK_BOLD, MARK_CODE, MARK_ITALIC } from '@udecode/plate-basic-marks'
import { getPluginType, Value } from '@udecode/plate-common'
import { Value } from '@udecode/slate'
import { getPluginType } from '@udecode/plate-core'
import { RemarkTextRules } from './types'

View File

@@ -1,4 +1,4 @@
import { Value } from '@udecode/plate-common'
import { Value } from '@udecode/slate'
import { remarkTransformNode } from './remarkTransformNode'
import { MdastNode, RemarkPluginOptions } from './types'

View File

@@ -1,4 +1,4 @@
import { TElement, Value } from '@udecode/plate-common'
import { TElement, Value } from '@udecode/slate'
import { MdastNode, RemarkPluginOptions } from './types'

View File

@@ -1,4 +1,4 @@
import { TDescendant, Value } from '@udecode/plate-common'
import { TDescendant, Value } from '@udecode/slate'
import { remarkTransformNode } from './remarkTransformNode'
import { MdastNode, RemarkPluginOptions } from './types'

View File

@@ -1,4 +1,4 @@
import { TDescendant, Value } from '@udecode/plate-common'
import { TDescendant, Value } from '@udecode/slate'
import { remarkTextTypes } from './remarkTextTypes'
import { remarkTransformElement } from './remarkTransformElement'

View File

@@ -1,4 +1,4 @@
import { TText, Value } from '@udecode/plate-common'
import { TText, Value } from '@udecode/slate'
import { remarkDefaultTextRules } from './remarkDefaultTextRules'
import { MdastNode, RemarkPluginOptions } from './types'

View File

@@ -1,4 +1,5 @@
import { PlateEditor, TElement, Value } from '@udecode/plate-common'
import { TElement, Value } from '@udecode/slate'
import { PlateEditor } from '@udecode/plate-core'
export type MdastElementType =
| 'paragraph'