@atlaskit/adf-schema
Version:
Shared package that contains the ADF-schema (json) and ProseMirror node/mark specs
94 lines (93 loc) • 6.36 kB
TypeScript
export { expand, toJSON as expandToJSON } from './expand';
export type { ExpandDefinition } from './expand';
export { confluenceJiraIssue } from './confluence-jira-issue';
export { confluenceUnsupportedBlock } from './confluence-unsupported-block';
export { confluenceUnsupportedInline } from './confluence-unsupported-inline';
export { doc } from './doc';
export type { DocNode } from './doc';
export { blockquote } from './blockquote';
export type { BlockQuoteDefinition } from './blockquote';
export { bulletList, bulletListSelector } from './bullet-list';
export type { BulletListDefinition } from './types/list';
export { codeBlock, toJSON as codeBlockToJSON } from './code-block';
export type { CodeBlockDefinition, CodeBlockAttrs, CodeBlockBaseDefinition, CodeBlockWithMarksDefinition, } from './code-block';
export { hardBreak } from './hard-break';
export type { HardBreakDefinition } from './hard-break';
export { heading } from './heading';
export type { HeadingDefinition, HeadingBaseDefinition, HeadingWithAlignmentDefinition, HeadingWithIndentationDefinition, HeadingWithMarksDefinition, } from './heading';
export { rule } from './rule';
export type { RuleDefinition } from './rule';
export { orderedList, orderedListSelector, orderedListWithOrder, } from './ordered-list';
export type { OrderedListDefinition } from './types/list';
export { paragraph } from './paragraph';
export type { ParagraphDefinition, ParagraphBaseDefinition, ParagraphWithAlignmentDefinition, ParagraphWithIndentationDefinition, ParagraphWithMarksDefinition, } from './paragraph';
export { emoji } from './emoji';
export type { EmojiAttributes, EmojiDefinition } from './emoji';
export { image } from './image';
export { mention, toJSON as mentionToJSON } from './mention';
export type { MentionAttributes, UserType as MentionUserType, MentionDefinition, } from './mention';
export { listItem } from './list-item';
export type { ListItemArray, ListItemDefinition } from './types/list';
export { panel, PanelType } from './panel';
export type { PanelAttributes, PanelDefinition } from './panel';
export { text } from './text';
export type { TextDefinition } from './text';
export { default as unknownBlock } from './unknown-block';
export { caption } from './caption';
export type { CaptionDefinition } from './caption';
export { media, copyPrivateAttributes as copyPrivateMediaAttributes, toJSON as mediaToJSON, } from './media';
export type { MediaType, MediaBaseAttributes, MediaAttributes, ExternalMediaAttributes, DisplayType as MediaDisplayType, MediaDefinition, MediaADFAttrs, } from './media';
export { mediaGroup } from './media-group';
export { mediaInline } from './media-inline';
export type { MediaInlineAttributes, MediaInlineDefinition, } from './media-inline';
export type { MediaGroupDefinition } from './media-group';
export { mediaSingle, mediaSingleWithCaption, toJSON as mediaSingleToJSON, } from './media-single';
export type { MediaSingleDefinition } from './media-single';
export { table, tableToJSON, tableCell, toJSONTableCell, tableHeader, toJSONTableHeader, tableRow, tableBackgroundColorPalette, tableBackgroundBorderColor, tableBackgroundColorNames, getCellAttrs, getCellDomAttrs, tablePrefixSelector, tableCellSelector, tableHeaderSelector, tableCellContentWrapperSelector, tableCellContentDomSelector, } from './tableNodes';
export type { TableAttributes, CellAttributes, Layout as TableLayout, TableDefinition, TableCell as TableCellDefinition, TableHeader as TableHeaderDefinition, TableRow as TableRowDefinition, CellDomAttrs, } from './tableNodes';
export { decisionList, decisionListSelector } from './decision-list';
export type { DecisionListDefinition } from './decision-list';
export { decisionItem } from './decision-item';
export type { DecisionItemDefinition } from './decision-item';
export { taskList, taskListSelector } from './task-list';
export type { TaskListDefinition, TaskListContent } from './task-list';
export { taskItem } from './task-item';
export type { TaskItemDefinition } from './task-item';
export { extension } from './extension';
export type { ExtensionDefinition } from './extension';
export { inlineExtension } from './inline-extension';
export type { InlineExtensionDefinition } from './inline-extension';
export { bodiedExtension } from './bodied-extension';
export type { BodiedExtensionDefinition } from './bodied-extension';
export { date } from './date';
export type { DateDefinition } from './date';
export { placeholder } from './placeholder';
export type { PlaceholderDefinition } from './placeholder';
export { layoutSection, layoutSectionWithSingleColumn } from './layout-section';
export type { LayoutSectionDefinition, LayoutSectionBaseDefinition, LayoutSectionFullDefinition, LayoutSectionWithSingleColumnDefinition, } from './layout-section';
export { layoutColumn } from './layout-column';
export type { LayoutColumnDefinition } from './layout-column';
export { inlineCard } from './inline-card';
export type { InlineCardDefinition } from './inline-card';
export { blockCard } from './block-card';
export type { UrlType, DataType, CardAttributes, BlockCardDefinition, } from './block-card';
export { unsupportedBlock } from './unsupported-block';
export { unsupportedInline } from './unsupported-inline';
export { status } from './status';
export type { StatusDefinition } from './status';
export { nestedExpand } from './nested-expand';
export type { NestedExpandDefinition } from './nested-expand';
export type { NoMark } from './types/mark';
export type { MarksObject } from './types/mark';
export type { BlockContent } from './types/block-content';
export type { NonNestableBlockContent } from './types/non-nestable-block-content';
export type { InlineAtomic } from './types/inline-content';
export type { InlineCode } from './types/inline-content';
export type { InlineLinkText } from './types/inline-content';
export type { InlineFormattedText } from './types/inline-content';
export type { Inline } from './types/inline-content';
export type { NestedExpandContent } from './nested-expand';
export type { Layout as ExtensionLayout } from './types/extensions';
export { embedCard } from './embed-card';
export type { EmbedCardDefinition, EmbedCardAttributes } from './embed-card';
export type { RichMediaAttributes, Layout as RichMediaLayout, } from './types/rich-media-common';