mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-12-14 07:07:21 +08:00
22d078b47f
Imported at 0.17.1, Modified to work in-app. Added & configured test dependancies. Tests need to be altered to avoid using non-included deps including react dependancies.
51 lines
1.4 KiB
TypeScript
51 lines
1.4 KiB
TypeScript
/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
*/
|
|
|
|
import type {SerializedListItemNode} from './LexicalListItemNode';
|
|
import type {ListType, SerializedListNode} from './LexicalListNode';
|
|
import type {LexicalCommand} from 'lexical';
|
|
|
|
import {createCommand} from 'lexical';
|
|
|
|
import {$handleListInsertParagraph, insertList, removeList} from './formatList';
|
|
import {
|
|
$createListItemNode,
|
|
$isListItemNode,
|
|
ListItemNode,
|
|
} from './LexicalListItemNode';
|
|
import {$createListNode, $isListNode, ListNode} from './LexicalListNode';
|
|
import {$getListDepth} from './utils';
|
|
|
|
export {
|
|
$createListItemNode,
|
|
$createListNode,
|
|
$getListDepth,
|
|
$handleListInsertParagraph,
|
|
$isListItemNode,
|
|
$isListNode,
|
|
insertList,
|
|
ListItemNode,
|
|
ListNode,
|
|
ListType,
|
|
removeList,
|
|
SerializedListItemNode,
|
|
SerializedListNode,
|
|
};
|
|
|
|
export const INSERT_UNORDERED_LIST_COMMAND: LexicalCommand<void> =
|
|
createCommand('INSERT_UNORDERED_LIST_COMMAND');
|
|
export const INSERT_ORDERED_LIST_COMMAND: LexicalCommand<void> = createCommand(
|
|
'INSERT_ORDERED_LIST_COMMAND',
|
|
);
|
|
export const INSERT_CHECK_LIST_COMMAND: LexicalCommand<void> = createCommand(
|
|
'INSERT_CHECK_LIST_COMMAND',
|
|
);
|
|
export const REMOVE_LIST_COMMAND: LexicalCommand<void> = createCommand(
|
|
'REMOVE_LIST_COMMAND',
|
|
);
|