@wulperstudio/editor-render 0.0.6-beta → 0.0.8-beta
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/cjs/dist/base/index.d.ts +2 -1
- package/dist/cjs/dist/helpers/list/index.d.ts +1 -1
- package/dist/cjs/index.js +5 -5
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/dist/base/index.d.ts +2 -1
- package/dist/esm/dist/helpers/list/index.d.ts +1 -1
- package/dist/esm/index.js +5 -5
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/package.json +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -324,7 +324,7 @@ interface ListNodeModel {
|
|
|
324
324
|
List?: ListRootProps;
|
|
325
325
|
Item?: RootItemProps;
|
|
326
326
|
}
|
|
327
|
-
declare const ListNode: ({ type, data, id, tunes, List, Item }: ListNodeModel) => JSX.Element;
|
|
327
|
+
declare const ListNode: ({ type, data, id, tunes, Container, List, Item }: ListNodeModel) => JSX.Element;
|
|
328
328
|
|
|
329
329
|
interface ImageNodeProps {
|
|
330
330
|
type: 'image';
|
|
@@ -470,6 +470,6 @@ declare type Props = {
|
|
|
470
470
|
Item?: RootCheckListItemProps;
|
|
471
471
|
};
|
|
472
472
|
};
|
|
473
|
-
declare const BaseNodesEditor: ({ value, ParagraphSlot, HeaderSlot, DelimiterSlot, ListSlot, ImageSlot, TableSlot, EmbedSlot, RawSlot, QuoteSlot, CodeSlot, LinkSlot, CheckListSlot, }: Props) =>
|
|
473
|
+
declare const BaseNodesEditor: ({ value, ParagraphSlot, HeaderSlot, DelimiterSlot, ListSlot, ImageSlot, TableSlot, EmbedSlot, RawSlot, QuoteSlot, CodeSlot, LinkSlot, CheckListSlot, }: Props) => JSX.Element;
|
|
474
474
|
|
|
475
475
|
export { BaseNodesEditor, BlockCheckListModel, BlockCodeModel, BlockDelimiterModel, BlockEmbedModel, BlockHeaderModel, BlockImageModel, BlockItemType, BlockLinkToolModel, BlockListModel, BlockParagraphModel, BlockQuoteModel, BlockRawToolModel, BlockTableModel, CheckListNode, CheckListNodeProps as CheckListNodeModel, CodeNode, CodeNodeProps as CodeNodeModel, DataCheckList, DataChecklistItem, DataCodeLang, DataDelimiter, DataEmbed, DataHeader, DataImage, DataLinkTool, DataList, DataMetaLink, DataParagraph, DataQuote, DataRawTool, DataTable, DelimiterNode, DelimiterNodeProps as DelimiterNodeModel, Anchor as EditorAnchor, Bold as EditorBold, CheckBox as EditorCheckBox, CheckList as EditorCheckList, CheckListItem as EditorCheckListItem, Code as EditorCode, Container as EditorContainer, EditorDataModel, Delimiter as EditorDelimiter, Embed as EditorEmbed, Header as EditorHeader, Image as EditorImage, InlineCode as EditorInlineCode, Italic as EditorItalic, Link as EditorLink, List as EditorList, ListItem as EditorListItem, Marker as EditorMarker, Paragraph as EditorParagraph, Quote as EditorQuote, Raw as EditorRaw, Table as EditorTable, TableCell as EditorTableCell, TableRow as EditorTableRow, EmbedNode, EmbedNodeProps as EmbedNodeModel, ForkIdWithType, HeaderNode, HeaderNodeProps as HeaderNodeModel, ImageNode, ImageNodeProps as ImageNodeModel, LinkNode, LinkNodeProps as LinkNodeModel, ListNode, ListNodeModel, ParagraphNode, ParagraphNodeProps as ParagraphNodeModel, PurifyHtml, QuoteNode, QuoteNodeProps as QuoteNodeModel, RawNode, RawNodeProps as RawNodeModel, RecursiveNode, TableNode, TableNodeProps as TableNodeModel, Tune, getFlexBasis };
|
package/dist/package.json
CHANGED